home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="iso-8859-1"?>
- <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
- <svg xmlns="http://www.w3.org/2000/svg">
- <script type="text/ecmascript"> <![CDATA[
- function text_on(evt,which) {
- title = evt.target.ownerDocument.getElementById(which);
- title.setAttribute("visibility", "visible");
- }
- ]]> </script>
- <script type="text/ecmascript"> <![CDATA[
- function text_off(evt,which) {
- title = evt.target.ownerDocument.getElementById(which);
- title.setAttribute("visibility", "hidden");
- }
- ]]> </script>
-
- <text onmouseover="text_on(evt,'hints')" onmouseout="text_off(evt,'hints')" x="75px" y="50px">MouseOverMe</text>
- <g id="hints" visibility="hidden">
- <text x="175px" y="20px" >On mouse over, </text>
- <text x="175px" y="40px">this text becomes visible </text>
- </g>
-
- </svg>
-